home *** CD-ROM | disk | FTP | other *** search
/ Inventor Labs: Transportation / InventorLabs - Transportation.iso / mac / Builders / media / netacess / url95.dir / 00052_Script_52 < prev    next >
Text File  |  1996-10-10  |  744b  |  24 lines

  1. on exitFrame
  2.   global TheWeb,ErrorReport,AOLCount
  3.   global BrowserRun, AOLOnline, AOLBusy
  4.   
  5.   
  6.   set BrowserRun = TheWeb(mIsBrowserRunning)
  7.   set AOLOnline = TheWeb(mIsAOLOnline)
  8.   set AOLBusy = TheWeb(mIsAOLBusy)
  9.   set AOLReg = TheWeb(mIsAOLRegistered)
  10.   
  11.   set RunString = "AOLRunning = " && string(BrowserRun)
  12.   set OnlineString = "AOLOnline = " && string(AOLOnline)
  13.   set BusyString = "AOLBusy = " && string(AOLBusy)
  14.   set RegString = "AOLRegistered = " && string(AOLReg)
  15.   
  16.   set the text of member "AOLRun" = RunString 
  17.   set the text of member "AOLOnline" = OnlineString 
  18.   set the text of member "AOLBusy" = BusyString  
  19.   set the text of member "AOLReg" = RegString 
  20.   
  21.   updateStage
  22.   go frame the frame
  23.   
  24. end